Set Constructor

Wintellect PowerCollections

Collapse imageExpand ImageCollapseAll imageExpandAll imageDropDown imageDropDownHover imageCopy imageCopyHover image
[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Overload List

NameDescription
Public methodSet<(Of <T>)>Set<(Of <T>)>New()()
Creates a new Set. The Equals method and GetHashCode method on T will be used to compare items for equality.
Public methodSet<(Of <T>)>Set<(Of <T>)>New(IEnumerable<(Of <T>)>)
Creates a new Set. The Equals method and GetHashCode method on T will be used to compare items for equality.
Public methodSet<(Of <T>)>Set<(Of <T>)>New(IEqualityComparer<(Of <T>)>)
Creates a new Set. The Equals and GetHashCode method of the passed comparer object will be used to compare items in this set.
Public methodSet<(Of <T>)>Set<(Of <T>)>New(IEnumerable<(Of <T>)>, IEqualityComparer<(Of <T>)>)
Creates a new Set. The Equals and GetHashCode method of the passed comparer object will be used to compare items in this set. The set is initialized with all the items in the given collection.

See Also